From: Quan Xu Date: Thu, 15 Jan 2015 09:21:42 +0000 (-0500) Subject: vTPM/TPM2: Add global data in vtpm_globals{} X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~3842 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=c574452cdd5dcd234c94cc086b8b9c719f207430;p=xen.git vTPM/TPM2: Add global data in vtpm_globals{} These data is for the Mini-os to access TPM 2.0 hardware. Signed-off-by: Quan Xu Acked-by: Daniel De Graaf --- diff --git a/stubdom/vtpmmgr/vtpmmgr.h b/stubdom/vtpmmgr/vtpmmgr.h index 2d9d15319c..0d0c604eaa 100644 --- a/stubdom/vtpmmgr/vtpmmgr.h +++ b/stubdom/vtpmmgr/vtpmmgr.h @@ -44,6 +44,7 @@ #include "uuid.h" #include "tcg.h" #include "vtpm_manager.h" +#include "tpm2_types.h" #define RSA_KEY_SIZE 0x0800 #define RSA_CIPHER_SIZE (RSA_KEY_SIZE / 8) @@ -59,6 +60,14 @@ struct vtpm_globals { ctr_drbg_context ctr_drbg; int hw_locality; + + /* TPM 2.0 */ + TPM_AuthArea pw_auth; + TPM_AuthArea srk_auth_area; + TPM_HANDLE srk_handle; + TPM_HANDLE sk_handle; + TPM2B_NAME sk_name; + TPM2_RSA_KEY tpm2_storage_key; }; struct tpm_opaque {